home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- * *
- * boolean.h - definitions required for boolean operations *
- * *
- * Copyright (c) 1988, Thomas H. Goodgame, Jr. All rights reserved. *
- * *
- * Purpose: *
- * This file defines macros for BOOLEAN typedef and logical values of *
- * TRUE and FALSE to use with it. *
- * *
- ****************************************************************************
- * *
- * Derived from a text file CRULES.DOC contained in CRULES.ARC titled *
- * "Notes from the Ultra-Conservative Right Wing" by Marc J. Rochkind. *
- * Copyright by Advanced Programming Institute, Ltd. *
- * *
- ****************************************************************************/
-
- typedef int BOOLEAN;
-
- #define TRUE 1
- #define FALSE 0